home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _ADFDC946C9FF46CD9DC579C4872BCB91 < prev    next >
Encoding:
Text File  |  2006-08-04  |  726 b   |  26 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_ColorAdjustCurves():
  13.     return {
  14.         'CurveParams': {
  15.             'RGB': [(0,0),(60,70),(160,90),(180,200),(255,255)], 
  16.             'Red': [(0,0),(255,255)], 
  17.             'Green': [(0,0),(255,255)], 
  18.             'Blue': [(0,0),(255,255)]
  19.             }
  20.         }
  21.  
  22. def Do(Environment):
  23.     # ColorAdjustCurves
  24.     App.Do( Environment, 'ColorAdjustCurves',         Preset_ColorAdjustCurves())
  25.  
  26.